home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / ENROLS1.PAK / SECTSET.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  934b  |  37 lines

  1. // SectSet.h : interface of the CSectionSet class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CSectionSet : public CRecordset
  6. {
  7. public:
  8.     CSectionSet(CDatabase* pDatabase = NULL);
  9.     DECLARE_DYNAMIC(CSectionSet)
  10.  
  11. // Field/Param Data
  12.     //{{AFX_FIELD(CSectionSet, CRecordset)
  13.     CString    m_CourseID;
  14.     CString    m_SectionNo;
  15.     CString    m_InstructorID;
  16.     CString    m_RoomNo;
  17.     CString    m_Schedule;
  18.     int    m_Capacity;
  19.     //}}AFX_FIELD
  20.  
  21. // Overrides
  22.     // ClassWizard generated virtual function overrides
  23.     //{{AFX_VIRTUAL(CSectionSet)
  24.     public:
  25.     virtual CString GetDefaultConnect();    // Default connection string
  26.     virtual CString GetDefaultSQL();     // default SQL for Recordset
  27.     virtual void DoFieldExchange(CFieldExchange* pFX);    // RFX support
  28.     //}}AFX_VIRTUAL
  29.  
  30. // Implementation
  31. #ifdef _DEBUG
  32.     virtual void AssertValid() const;
  33.     virtual void Dump(CDumpContext& dc) const;
  34. #endif
  35.  
  36. };
  37.